954052b64e5bc94af1a46d93c13eadd9100a6dfb,Mage/src/mage/abilities/effects/common/continious/BoostAllEffect.java,BoostAllEffect,init,#Ability#Game#,93

Before Change


	public void init(Ability source, Game game) {
		super.init(source, game);
		if (this.affectedObjectsSet) {
			for (Permanent perm: game.getBattlefield().getAllActivePermanents(filter)) {
				if (!(excludeSource && perm.getId().equals(source.getSourceId()))) {
					objects.add(perm.getId());
				}

After Change


	public void init(Ability source, Game game) {
		super.init(source, game);
		if (this.affectedObjectsSet) {
			for (Permanent perm: game.getBattlefield().getActivePermanents(filter, source.getControllerId(), source.getSourceId(), game)) {
				if (!(excludeSource && perm.getId().equals(source.getSourceId()))) {
					objects.add(perm.getId());
				}